/* =================================
   ROOT & BASIS
================================= */
:root {
    --primary: #615e16;
    --background: rgb(25, 40, 80);
    --text: #3A2A1A;
    --radius: 8px;
    font-size: 16px;
    /* stabiele basis */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* =================================
   CONTAINER
================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =================================
   HEADER
================================= */
.header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.logo-img {
    max-height: 100px;
    width: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.2);
}

/* =================================
   TITELS
================================= */
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3A2A1A;
    margin-left: 8px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgb(170, 140, 60);
    margin-left:8px;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: rgb(170, 140, 60);
    margin-left: 8px
}

/* =================================
   SECTIONS
================================= */
.section {
    margin: 3rem 0;
}

.section-uniform {
    padding: 4rem 2rem;
    border-radius: 12px;
    background-image:
        linear-gradient(rgba(122, 90, 48, 0.35),
            rgba(122, 90, 48, 0.35)),
        url("images/Logo Frank achtergrond meisje zwart.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: #3A2A1A;
    box-shadow:
        0 -10px 30px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.6);
        
}

/* =================================
   HOME BLOKKEN
================================= */
.home-tekst-section p,
.home-tekst2-section {
    margin-bottom: 1.5rem;
    padding: 1.8rem;
    border-radius: 12px;
    background: rgba(248, 231, 192, 0.4);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.5);
        max-width: 900px;
         backdrop-filter: blur(5px);          
    -webkit-backdrop-filter: blur(5px);
}
.highlight-h2 {
    color: rgb(170, 140, 60);  /* zelfde als h2 en h3 */
    font-size: 1.4rem;
    font-weight: bold;
}


/* =================================
   BUTTONS
================================= */
.btn {
    display: inline-block;
    background: rgba(165, 145, 105, 0.9);
    color: white;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    border: 1px solid rgb(218, 195, 153);
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.5);
}

.vinkje {
    color: #D4AF37;
    margin-right: 0.4rem;
}

/* =================================
   FOOTER
================================= */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #D4AF37;
    font-size: 1rem;
    background-color: rgb(25, 40, 80);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.footer-text-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons img {
    width: 22px;
    height: 22px;
    transition: transform 0.25s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* =================================
   PARTNER
================================= */
.partner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    color: #D4AF37;
}

.partner img {
    height: 80px;
    border-radius: 12px;
    transition: transform 0.25s ease;
}

.partner a:hover img {
    transform: scale(1.2);
}
/* ===============================
   QUOTES WIDGET
================================= */
.quotes-widget {
    max-width: 700px;
    margin: 2rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.quotes-widget-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background-color: rgba(165, 145, 105, 0.9);
    color: white;
    border-radius: 16px;
    transition: background-color 0.2s;
}

.quotes-widget-trigger:hover {
    filter: brightness(1.1);
}

.quotes-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.quotes-arrow.open {
    transform: rotate(180deg);
}

.quotes-widget-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: rgba(248, 231, 192, 0.95);
    padding: 0 1.5rem;
    border-radius: 0 0 16px 16px;
}

.quotes-widget-panel.open {
    max-height: 800px;
    padding: 1.5rem;
}

.quote-accordion-item {
    margin-bottom: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
}

.quote-trigger {
    width: 100%;
    text-align: left;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background-color: rgba(165, 145, 105, 0.7);
    color: white;
    transition: background-color 0.2s;
}

.quote-trigger:hover {
    filter: brightness(1.1);
}

.quote-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.25rem;
    background-color: rgba(229, 212, 179, 0.6);
    border-radius: 0 0 10px 10px;
    font-style: italic;
    color: #3A2A1A;
}

.quote-content p:last-child {
    margin-top: 0.5rem;
    opacity: 0.75;
}

.quote-content.open {
    max-height: 200px;
    padding: 1rem 1.25rem;
}

.quotes-sluit {
    display: block;
    margin: 1rem auto 0;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(165, 145, 105, 0.9);
    color: #3A2A1A;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.quotes-sluit:hover {
    background-color: rgba(165, 145, 105, 0.2);
}




/* =================================
   RESPONSIVE – MOBILE
================================= */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        
    }

    .logo-img {
        max-height: 70px;
        margin-bottom: 0.5rem;
    }

.section-uniform {
    padding: 2rem 0.25rem;
    background-size: cover;
    background-position: 70% top;       /* ← meisje links uitlijnen */
    background-attachment: local;
    background-repeat: no-repeat;
    background-color: rgba(122, 90, 48, 0.35);
}

       .home-tekst-section p,
    .home-tekst2-section {
        margin-left: 0.75rem;   /* ruimte links */
        margin-right: 0.75rem;  /* ruimte rechts */
              backdrop-filter: blur(5px);          
    -webkit-backdrop-filter: blur(5px);
    }


    .container {
        padding: 0 .25rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .partner {
        flex-direction: column;
        text-align: center;
    }

    .partner img {
        height: 60px;
    }


/* LOGO HOVER */
.logo-img {
    max-height: 70px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-radius: 8px;
    transform-origin: top left;
    transition: transform 0.3s ease;
    margin-top: 8px;
}

.logo-img:hover {
    transform: scale(2.0);
}

/* PARTNER HOVER */
.partner img {
    height: 100px;
    transition: transform 0.25s ease;
    border-radius: 12px;
    transform-origin: bottom right;
}

.partner a:hover img {
    transform: scale(1.5);
}

@media (max-width: 600px) {
    .quotes-widget {
        margin: 1rem auto;
        width: 85%;
        max-width: 85%;
        overflow: visible;
    }

    .quotes-widget-trigger {
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
        border-radius: 12px;
    }

    .quotes-widget-panel.open {
        max-height: 75vh;
        overflow-y: auto;
        padding: 1rem;
    }

    .quote-trigger {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }

    .quote-accordion-item {
        margin-bottom: 0.5rem;
    }

    .quote-content.open {
        max-height: 200px;
        padding: 0.75rem 1rem;
    }

    .quotes-sluit {
        position: sticky;
        bottom: 0;
        background: rgba(248, 231, 192, 0.97);
        margin: 0.75rem auto 0;
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
}


}
